a4da7d36bc50e2b620124f35d660758d9ad4b586,modules/portal/portal-servlet-jsp-compiler/src/main/java/com/liferay/portal/servlet/jsp/compiler/internal/JspClassResolver.java,JspClassResolver,resolveClasses,#BundleWiring#String#number#,94
Before Change
if (bundle.equals(_bundle) || bundle.equals(_jspBundle)) {
resources = bundleWiring.listResources(path, "*.class", options);
}
else if (isExportsPackage(bundleWiring, path.replace('/', '.'))) {
if (bundle.getBundleId() == 0) {
resources = handleSystemBundle(bundleWiring, path);
}
else {
resources = bundleWiring.listResources(
path, "*.class", options);
}
}
After Change
bundle, bundleWiring.listResources(path, "*.class", options));
}
if (!isExportsPackage(bundleWiring, path.replace('/', '.'))) {
return Collections.emptyList();
}
if (bundle.getBundleId() == 0) {
return handleSystemBundle(bundleWiring, path);
}
return toJavaFileObjects(
bundle, bundleWiring.listResources(path, "*.class", options));
}
protected String decodePath(String path) {